home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960209-19960425 / 000094_news@columbia.edu _Sun Feb 25 17:25:59 1996.msg < prev    next >
Internet Message Format  |  1996-05-13  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id RAA13425 for <kermit.misc@watsun>; Sun, 25 Feb 1996 17:25:58 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id RAA13398 for kermit.misc@watsun; Sun, 25 Feb 1996 17:25:57 -0500 (EST)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!hamblin.math.byu.edu!park.uvsc.edu!news.cc.utah.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: MSKERMIT 3.14 and COMMAND.COM
  8. Message-ID: <1996Feb25.081711.74972@cc.usu.edu>
  9. Date: 25 Feb 96 08:17:11 MDT
  10. References: <4gpdd3$b7q@oravannahka.Helsinki.FI>
  11. Organization: Utah State University
  12. Lines: 33
  13.  
  14. In article <4gpdd3$b7q@oravannahka.Helsinki.FI>, tlinden@cc.Helsinki.FI (Tomas Linden) writes:
  15. > Sometimes I get the following error message from MSKERMIT 3.14:
  16. >   ?Unable to execute command interpreter C:\COMMAND.COM
  17. > This I get in the middle of CONNECT mode and also when trying to execute
  18. > DOS 5.0 commands from within Kermit itself. I removed my SHELL command
  19. > from my CONFIG.SYS and this seemed to fix the problem, but I'm not yet
  20. > sure. I have COMMAND.COM in my root directory and also a copy of it in
  21. > C:\DOS because some other programs were complaining when I only had it
  22. > in the root. What is the real cause of this error message?
  23. =======
  24.     Your DOS Environment should have a line reading
  25.     COMSPEC=C:\COMMAND.COM
  26. or whereever command.com is located. It is created automatically by DOS
  27. via the line
  28.     SHELL=C:\COMMAND.COM /other-switches-go-here
  29. in config.sys. You can change COMSPEC= later after DOS finishes booting. 
  30. Kermit and other programs look for COMSPEC=. There is a futher use of
  31. keyword SHELL= which is it may appear in the DOS Environment and tell
  32. Kermit (and prehaps other programs) to use the right side as the name
  33. of the program to invoke rather than COMMAND.COM. Normally one does not
  34. have a SHELL= in the DOS Environment.
  35.     Loss of command.com can occur if more memory is needed than is
  36. available without overwriting the transient portion of command.com. DOS
  37. will recognize loss of the transient portion and replace it from the
  38. disk image of command.com. If DOS is misdirected then it can't find that
  39. disk image and we get the message you noted. 
  40.     If you provide no expanded memory and yet you ask for lots of
  41. Connect mode screen rollback buffers then the 640K memory area may be
  42. consumed entirely, including the transient portion of command.com. The
  43. solutions to this are to either create expanded memory with your memory
  44. managers (don't say NOEMS if using DOS' manager), or reduce the number
  45. of rollback buffers (DOS Environment, line KERMIT=roll smaller-value).
  46.     Joe D.